Open
Conversation
Contributor
Greptile SummaryThis PR consolidates the previously separate Confidence Score: 5/5Safe to merge — the consolidation is clean and the new ci.yml correctly handles both PR and push event types. No P0 or P1 issues found. The single remaining observation (no workflow_dispatch trigger) is a minor P2 convenience concern that doesn't affect correctness. No files require special attention. Important Files Changed
Flowchart%%{init: {'theme': 'neutral'}}%%
flowchart TD
A[Push to main/dev\nor Pull Request] --> B{paths-ignore\n**.md?}
B -- Only .md files --> Z[Skip CI]
B -- Other files --> C{Draft PR?}
C -- Yes --> Z
C -- No --> D[checks job]
D --> E[actions/checkout]
E --> F[Fix permissions]
F --> G[uv sync --all-extras --no-extra dds --frozen]
G --> H[Remove pydrake stubs]
H --> I{Event type?}
I -- pull_request --> J[pytest\nnot tool or mujoco]
I -- push --> K[coverage run\npytest\nnot tool or mujoco]
K --> L[coverage combine\n& report]
J --> M[mypy dimos\nif not cancelled]
L --> M
M --> N{push event?}
N -- Yes --> O[Upload coverage\nartifact]
N -- No --> P[Done]
O --> P
M --> Q{Failure?}
Q -- Yes --> R[df -h disk check]
Reviews (1): Last reviewed commit: "paul(ci): single step" | Re-trigger Greptile |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem
Closes DIM-XXX
Solution
Breaking Changes
How to Test
Contributor License Agreement